-
Re: Béziers: Lettering digitization app for iOS
Right. It has to make a decision on if you’re tapping near a node or near the path, because you’ll never hit the node’s location exactly dead on. If the two are close it may well make the wrong choic…1 -
Béziers: Lettering digitization app for iOS
I've just released the first version of Béziers for iOS. It's a vector graphics editor specially designed for digitizing lettering projects on the iPhone or iPad. You can take a picture of your work,…6 -
Re: Rounded font workflow?
I was thinking the other day about the bone effect when automatically adding caps and joins to offset curves. I wonder if the effect is simply a case of curvature discontinuity. We're used to dealing…2 -
Re: Python library for direct Bezier manipulation
The way I'm doing offsetting is slightly sneaky. I sample the original curve, offset the sampled points, and then run a curve fitting algorithm. (What can I say? There isn't a good way to do it, and …2 -
Re: Python library for direct Bezier manipulation
Well, I've started with my version: https://simoncozens.github.io/beziers.py/index.html Here's an example: fig, ax = plt.subplots() points = [ Point(100,50), Point(50,150), Point(150,250), Point(200,…3